翻訳と辞書
Words near each other
・ Positron emission mammography
・ Positron emission tomography
・ Positron emission tomography–magnetic resonance imaging
・ Positron Lifetime Spectroscopy
・ Positron Public Safety Systems
・ Positron! Records
・ Positron-Electron Tandem Ring Accelerator
・ Positronic (company)
・ Positronic brain
・ Positronium
・ Positronium hydride
・ Posium Pendasem
・ Posiva
・ POSIX
・ POSIX terminal interface
POSIX Threads
・ Posizolid
・ Posiłek, Gmina Walce
・ Posiłek, Opole Voivodeship
・ Posiłów
・ Poska
・ Poskam County
・ Poskin, Wisconsin
・ Poskota
・ Poskurice
・ Poskwitów
・ Poskwitów Stary
・ Poskær Stenhus
・ Posle mene (song)
・ Posle mene što ti e gajle


Dictionary Lists
翻訳と辞書 辞書検索 [ 開発暫定版 ]
スポンサード リンク

POSIX Threads : ウィキペディア英語版
POSIX Threads
POSIX Threads, usually referred to as Pthreads, is an example of an execution model that exists independently from a language, as well as an example of a parallel execution model. It allows a program to control multiple different flows of work that overlap in time. Each flow of work is referred to as a Thread, and creation and control over these flows is achieved by making calls to the POSIX Threads API.
POSIX Threads is a POSIX standard for threads. The standard, ''POSIX.1c, Threads extensions (IEEE Std 1003.1c-1995)'', defines an API for creating and manipulating threads.
Implementations of the API are available on many Unix-like POSIX-conformant operating systems such as FreeBSD, NetBSD, OpenBSD, Linux, Mac OS X and Solaris. DR-DOS and Microsoft Windows implementations also exist: within the SFU/SUA subsystem which provides a native implementation of a number of POSIX APIs, and also within third-party packages such as ''pthreads-w32'',〔(【引用サイトリンク】 title=Pthread Win-32: Level of standards conformance )〕 which implements pthreads on top of existing Windows API.
==Contents==
Pthreads defines a set of C programming language types, functions and constants. It is implemented with a pthread.h header and a thread library.
There are around 100 Pthreads procedures, all prefixed "pthread_" and they can be categorized into four groups:
*Thread management - creating, joining threads etc.
*Mutexes
*Condition variables
*Synchronization between threads using read/write locks and barriers
The POSIX semaphore API works with POSIX threads but is not part of threads standard, having been defined in the ''POSIX.1b, Real-time extensions (IEEE Std 1003.1b-1993)'' standard. Consequently the semaphore procedures are prefixed by "sem_" instead of "pthread_".

抄文引用元・出典: フリー百科事典『 ウィキペディア(Wikipedia)
ウィキペディアで「POSIX Threads」の詳細全文を読む



スポンサード リンク
翻訳と辞書 : 翻訳のためのインターネットリソース

Copyright(C) kotoba.ne.jp 1997-2016. All Rights Reserved.